type encoding/json.decodeState

23 uses

	encoding/json (current package)
		decode.go#L106: 	var d decodeState
		decode.go#L173: func (d *decodeState) unmarshal(v any) error {
		decode.go#L213: type decodeState struct {
		decode.go#L225: func (d *decodeState) readIndex() int {
		decode.go#L234: func (d *decodeState) init(data []byte) *decodeState {
		decode.go#L248: func (d *decodeState) saveError(err error) {
		decode.go#L255: func (d *decodeState) addErrorContext(err error) error {
		decode.go#L271: func (d *decodeState) skip() {
		decode.go#L286: func (d *decodeState) scanNext() {
		decode.go#L298: func (d *decodeState) scanWhile(op int) {
		decode.go#L322: func (d *decodeState) rescanLiteral() {
		decode.go#L363: func (d *decodeState) value(v reflect.Value) error {
		decode.go#L408: func (d *decodeState) valueQuoted() any {
		decode.go#L507: func (d *decodeState) array(v reflect.Value) error {
		decode.go#L604: func (d *decodeState) object(v reflect.Value) error {
		decode.go#L838: func (d *decodeState) convertNumber(s string) (any, error) {
		decode.go#L856: func (d *decodeState) literalStore(item []byte, v reflect.Value, fromQuoted bool) error {
		decode.go#L1035: func (d *decodeState) valueInterface() (val any) {
		decode.go#L1052: func (d *decodeState) arrayInterface() []any {
		decode.go#L1078: func (d *decodeState) objectInterface() map[string]any {
		decode.go#L1129: func (d *decodeState) literalInterface() any {
		stream.go#L19: 	d       decodeState